home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Jul / di9807jp / SFTPCLIENT / SFTPClient.dpr < prev    next >
Text File  |  1998-02-20  |  481b  |  22 lines

  1. (*
  2.    SFTPClient program developed for Delphi Informant by John Penman, 23 January 1998.
  3. *)
  4. program SFTPClient;
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'Main.pas' {frmMain},
  9.   CMsgThrd in 'CMsgThrd.pas',
  10.   CDataThrd in 'CDataThrd.pas',
  11.   WinSock2 in '..\..\..\..\..\LIB\Winsock2.pas',
  12.   About in 'About.pas' {frmAbout};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.Initialize;
  18.   Application.Title := 'SFTPClient 1.0';
  19.   Application.CreateForm(TfrmMain, frmMain);
  20.   Application.Run;
  21. end.
  22.